-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moved operations G-L to ov namespace #7344
Moved operations G-L to ov namespace #7344
Conversation
1af25ef
to
fd1552a
Compare
fd1552a
to
2c97cbd
Compare
Co-authored-by: Katarzyna Mitrus <[email protected]>
Co-authored-by: Katarzyna Mitrus <[email protected]>
2c97cbd
to
78786d7
Compare
78786d7
to
c81e5e6
Compare
/// | ||
class NGRAPH_API LSTMSequence : public util::RNNCellBase { | ||
public: | ||
NGRAPH_RTTI_DECLARATION; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NGRAPH_RTTI_DECLARATION; | |
OPENVINO_RTTI_DECLARATION; |
/// | ||
class NGRAPH_API LSTMSequence : public Op { | ||
public: | ||
NGRAPH_RTTI_DECLARATION; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NGRAPH_RTTI_DECLARATION; | |
OPENVINO_RTTI_DECLARATION; |
/// \brief Iterate a body over tensors, accumulating into tensors. | ||
class NGRAPH_API TensorIterator : public op::util::SubGraphOp { | ||
public: | ||
NGRAPH_RTTI_DECLARATION; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NGRAPH_RTTI_DECLARATION; | |
OPENVINO_RTTI_DEFINITION; |
namespace op { | ||
namespace v0 { | ||
/// \brief Iterate a body over tensors, accumulating into tensors. | ||
class NGRAPH_API TensorIterator : public op::util::SubGraphOp { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
class NGRAPH_API TensorIterator : public op::util::SubGraphOp { | |
class OPENVINO_API TensorIterator : public op::util::SubGraphOp { |
/// \sa LSTMCell, RNNCell, GRUCell | ||
/// | ||
/// | ||
class NGRAPH_API LSTMSequence : public util::RNNCellBase { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
class NGRAPH_API LSTMSequence : public util::RNNCellBase { | |
class OPENVINO_API LSTMSequence : public util::RNNCellBase { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will fix in the next PR
* Moved ngraph::Node to ov namespace * Fixed code style * Fixed VPU * Fixed GNA * Fixed tests * Added aliases for backward compatibility * Fix clDNN * Try to fix build * Fixed comment * Renamed RTTI macros * Moved op utils to ov namespace * Fixed ngraph library build * Fixed unit-tests * Changed src folder * Fixed recurrent_sequence * Changed low latency * Fixed serialize * Fixed ieFuncTests * Try to fix windows * Remove custom operator<< from tests * Fixed build * Moved operations from A to ov namespace * Moved operations from B and C to ov namespace * Moved operations D-F to ov namespace * Update ngraph/core/src/op/embeddingbag_offsets_sum.cpp Co-authored-by: Katarzyna Mitrus <[email protected]> * Update ngraph/core/src/op/embeddingbag_packedsum.cpp Co-authored-by: Katarzyna Mitrus <[email protected]> * Fixed RTTI * Moved operations G-L to ov namespace * Fixed RTTI Co-authored-by: Ilya Lavrenov <[email protected]> Co-authored-by: Katarzyna Mitrus <[email protected]>
* Moved ngraph::Node to ov namespace * Fixed code style * Fixed VPU * Fixed GNA * Fixed tests * Added aliases for backward compatibility * Fix clDNN * Try to fix build * Fixed comment * Renamed RTTI macros * Moved op utils to ov namespace * Fixed ngraph library build * Fixed unit-tests * Changed src folder * Fixed recurrent_sequence * Changed low latency * Fixed serialize * Fixed ieFuncTests * Try to fix windows * Remove custom operator<< from tests * Fixed build * Moved operations from A to ov namespace * Moved operations from B and C to ov namespace * Moved operations D-F to ov namespace * Update ngraph/core/src/op/embeddingbag_offsets_sum.cpp Co-authored-by: Katarzyna Mitrus <[email protected]> * Update ngraph/core/src/op/embeddingbag_packedsum.cpp Co-authored-by: Katarzyna Mitrus <[email protected]> * Fixed RTTI * Moved operations G-L to ov namespace * Fixed RTTI Co-authored-by: Ilya Lavrenov <[email protected]> Co-authored-by: Katarzyna Mitrus <[email protected]>
Details: